26. Solution: Pooling Practice

Solution

The correct answer is 2.5,10,15,6 . We start with the four numbers in the top left corner. Then we work left-to-right and top-to-bottom, moving 2 units each time.

max(0, 1, 2, 2.5) = 2.5
max(0.5, 10, 1, -8) = 10
max(4, 0, 15, 1) = 15
max(5, 6, 2, 3) = 6